home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 5 / CU Amiga Magazine's Super CD-ROM 05 (1996)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1996-12].iso / index < prev    next >
Text File  |  1996-10-21  |  473b  |  21 lines

  1. ; Searches the CD.index file for a specified string
  2.  
  3. Version >NIL: version 37
  4. if WARN
  5.     echo ""
  6.     echo "You need at least version 2.04 of the operating system to run SearchIndex"
  7.     quit
  8. endif
  9.  
  10. CUCD5:C/FlashFind CUCD5:CUCD.index `CUCD5:C/RequestString TITLE "Search CD Index" BODY "Please enter the string to search for"` >RAM:Found.tmp
  11.  
  12. Version >NIL: version 39
  13. if WARN
  14.     AmigaGuide RAM:Found.tmp
  15. else
  16.     MultiView RAM:Found.tmp
  17. endif
  18.  
  19. delete >NIL: RAM:found.tmp
  20.  
  21.